From cc08c3d6375407f5be6f03fbe74995fe3b8126f5 Mon Sep 17 00:00:00 2001 From: Ian Campbell Date: Fri, 21 Aug 2015 20:31:22 +0100 Subject: [PATCH] Correct syntax error in xen-init-list (cherry picked from commit bbd22332c24478f86a5cff52531c1bc3697d8d96) Conflicts: debian/changelog --- debian/changelog | 2 ++ debian/scripts/xen-init-list | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/debian/changelog b/debian/changelog index 80e1e6ff7d..e7b0a1b30a 100644 --- a/debian/changelog +++ b/debian/changelog @@ -35,6 +35,8 @@ xen (4.8.0-1~) unstable; urgency=high * Remove correct pidfile when stopping xenconsoled. * Check that xenstored has actually started before talking to it. Incorporate a timeout so as not to block boot (Mitigates #737613) + * Correct syntax error in xen-init-list when running with xend + (Closes: #763102) [ Lubomir Host ] * Fix xen-init-name to not fail looking for a nonexistent 'config' diff --git a/debian/scripts/xen-init-list b/debian/scripts/xen-init-list index 6a9ddbca7a..f5741bbfe3 100755 --- a/debian/scripts/xen-init-list +++ b/debian/scripts/xen-init-list @@ -51,7 +51,7 @@ class DataJSON(Data): class DataSXP(Data): def __init__(self, p): - s = SXPParser()(p) + s = SXPParser.loads(p) self.data = d = {} for i in s: if i and i[0] == 'domain': -- 2.30.2